METHOD:  Window::setTimeout

window.setTimeout(expression/function, milliseconds)

This method is used to call a function or evaluate an expression after a specified number of milliseconds. If an expression is to be evaluated, it must be quoted to prevent it being evaluated immediately. Note that the use of this method does not halt the execution of any remaining scripts until the timeout has passed, it just schedules the expression or function for the specified time.

The following example opens a new window and uses the setTimeout method to call the winClose() function which closes it after five seconds (5000 milliseconds).

Code:
function winClose() {
     myWindow.close()
}

myWindow = window.open("", "tinyWindow", 'width=150, height=110')
myWindow.document.write("This window will close automatically after five seconds. Thanks for your patience")
self.setTimeout('winClose()', 5000

Copyright 2000 by Infinite Software Solutions, Inc.
Trademark Information